home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows CE - The Ultimate Companion
/
ROMMAN_CE.iso
/
Files
/
Games
/
Pocket Jongg
/
_user1.cab
/
USERSETUP_LANGINDOSIND
/
pocketjongg.load
< prev
Wrap
Text File
|
1997-08-07
|
2KB
|
36 lines
// This is an example of a load script that could be used to load
// the H/PC Explorer. It modifies the registry, copies the needed
// files, and creates several shortcuts
// 1) Create the registry keys that associate .
// files with HPC Explorer.
// Register icons for the application
regKeyCreate HKEY_CURRENT_USER Software\C-Labs 1
regKeyCreate HKEY_CURRENT_USER Software\C-Labs\PocketJongg 1
regString HKEY_CURRENT_USER Software\C-Labs\PocketJongg 1 AllowHelp "ON"
regString HKEY_CURRENT_USER Software\C-Labs\PocketJongg 1 AllowNextRound "OFF"
regString HKEY_CURRENT_USER Software\C-Labs\PocketJongg 1 Intermission "ON"
regString HKEY_CURRENT_USER Software\C-Labs\PocketJongg 1 PlayMode "1"
regString HKEY_CURRENT_USER Software\C-Labs\PocketJongg 1 ShowBackPic "ON"
regString HKEY_CURRENT_USER Software\C-Labs\PocketJongg 1 ShowScore "ON"
regString HKEY_CURRENT_USER Software\C-Labs\PocketJongg 1 Skill "1"
regString HKEY_CURRENT_USER Software\C-Labs\PocketJongg 1 Sound "ON"
regString HKEY_CURRENT_USER Software\C-Labs\PocketJongg 1 StartRound "1"
regString HKEY_CURRENT_USER Software\C-Labs\PocketJongg 1 WindowsPos "0,0,480,240"
// 2) Copy the files from the desktop PC to the HPC
copy . . pocketjong.exe
// 3) Create the shortcuts; one on the Desktop,
// and one in the Windows\Programs\Games folder.
createShortcut \Windows\Desktop "Pocket-Jongg Demo.lnk" . pocketjong.exe
createShortcut "\Windows\Programs\Games" "Pocket-Jongg Demo.lnk" . pocketjong.exe
// remoteExec .\pocketjong.exe /r
// Exit the script
exit